Merged
Conversation
…ple runtime identifiers (RIDs)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces several major improvements to the project’s developer experience, release automation, and codebase maintainability. The most significant changes include adding comprehensive GitHub Actions workflows for CI, release, and tagging; implementing a tag-driven release process with detailed documentation; refactoring console output handling for better testability; and enhancing packaging scripts for flexibility. Additionally, project documentation and editor configuration have been updated for clarity and consistency.
Release Automation and CI:
Added GitHub Actions workflows for continuous integration (
ci.yml), automated releases on tag push (release.yml), and a manual tag-and-release workflow (tag-release.yml). These workflows ensure that tests are run, versioning is validated, release assets are built and packaged for multiple platforms, checksums are generated, and GitHub Releases are created with all necessary artifacts. [1] [2] [3]Introduced a detailed
docs/RELEASE.mddocumenting the tag-driven release process, including both automated and manual fallback procedures for maintainers.Codebase Improvements (Console Abstraction):
IConsoleabstraction and a concreteConsoleimplementation to decouple console output from system calls, improving testability and consistency across commands. Updated all command controllers to use dependency-injectedIConsoleinstead of directSystem.Consolecalls. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13]Packaging and Build Scripts:
scripts/package-release.shto support flexible invocation with optional version and runtime identifier arguments, improved usage help, and automatic version extraction from the project file. This enables easier local and CI-based packaging for multiple platforms. [1] [2]Documentation and Ecosystem Integration:
README.mdto include links to releases and license, and added a Homebrew-based installation guide for macOS users. [1] [2]Editor and Formatting Consistency:
.editorconfigto enforce 2-space indentation for YAML files, aligning with common ecosystem conventions.